home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
262_01
/
symdef.h
< prev
next >
Wrap
Text File
|
1988-03-28
|
768b
|
16 lines
/****************************************************************
* Definitions for Symbol Table Manipulation Package *
* *
* by Robert Ramey *
* 8 August 1986 *
****************************************************************/
typedef struct _symtbl { /*structure for symbol table data */
int _element_size; /*size of data not includeing links nor*/
/*symbol itself */
int _hash_factor; /*number of chains of symbols */
int *_hash_address[1]; /*address of start of chain */
} SYMBOLTABLE;
typedef char SYMBOLENTRY;
by Robert Ramey